home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 473 b | 30 lines | [TEXT/MPCC] |
- // ScreenTarget.h
-
- #pragma once
-
-
- class ScreenTarget
- {
- protected:
- void *baseAddr;
- long rowBytes;
- long addRowBytes;
- long width;
- long height;
- public:
- ScreenTarget(
- WindowPtr window);
- virtual ~ScreenTarget();
-
- void PutData(
- const void *inPtr,
- long inRowBytes,
- long inWidth,
- long inNumRows,
- long destRow,
- long destCol);
-
- void UpdateFromWindow(
- WindowPtr window);
- };
-